.newHeader {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  height: 50px;
  line-height: 50px;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}
.newHeader a {
  color: none;
  text-decoration: none;
}
.newHeader_inner {
  width: 1200px;
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
}
.newHeader_inner_content {
  display: flex;
  align-items: center;
  height: 100%;
}
.newHeader_inner_content_item {
  margin: 0 24px;
  font-size: 14px;
  color: #fff !important;
  height: 100%;
}
.newHeader_inner_content_item_act {
  position: relative;
  color: #FF8900 !important;
}
.newHeader_inner_content_item_act::after {
  content: '';
  width: 100%;
  height: 2px;
  background: #FF8900;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.newHeader_inner_content_item_curact {
  position: relative;
  color: #FF8900 !important;
}
.newHeader_inner_content_item_curact::after {
  content: '';
  width: 100%;
  height: 2px;
  background: #FF8900;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.curLanguage {
  font-size: 14px;
  color: #fff;
}
.newHeader_inner_content_item_special, .curLanguage {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
} 
.newHeader_inner_content_item_special img,.curLanguage img {
  width: 16px;
  height: 16px;
}
.newHeader_pop {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  background: #fff;
  width: 120px;
  padding: 8px 0;
  display: none;
}
.newHeader_pop_item {
  width: 100%;
  text-align: center;
  line-height: 36px;
  font-size: 14px;
  color: #333333 !important;
  display: block;
}
.newHeader_pop_item:hover {
  color: #FF8900 !important;
}
.newHeader_pop_item_act {
  color: #FF8900 !important;
}
.newHeader_inner_content_item:hover {
  color: #FF8900 !important;
}
.rotate {
  animation: rotate 0.5s;
  animation-fill-mode: forwards;
}
@keyframes rotate{0%{transform: rotate(0deg);}100%{transform: rotate(180deg);}}
.curLanguage:hover {
  color: #FF8900 !important;
}